This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
~Sarah Dwotooskiader 2.Dec.03 05:44 PM a Web browser Domino Designer6.0.3Windows XP
Did some searches on merging cells within a table but it didnt give back any good results. Does anyone know how? They have some examples of how to build tables in a rtf and how to populate but I want more control.
My goal is to send some results to some users via an agent and have it formatted nice.
Heres what i plan to use to populate it:
Set emaildoc = New NotesDocument(s.CurrentDatabase)
Set rtf = New NotesRichTextItem(emaildoc, "Body")
emaildoc.form = "memo"
emaildoc.subject = "Tech Log Summary"
emaildoc.sendto = "CN/OU/C"
columnCount% = 3
Call rtf.AppendTable(rowCount%, columnCount%)
Dim rtnav As NotesRichTextNavigator
Set rtnav = rtf.CreateNavigator
Call rtnav.FindFirstElement(RTELEM_TYPE_TABLECELL)
For iRow% = 1 To 4 Step 1
For iColumn% = 1 To 3 Step 1
Call rtf.BeginInsert(rtnav)
Call rtf.AppendText("Row " & iRow% & ", Column " & iColumn%)
Call rtf.EndInsert
Call rtnav.FindNextElement(RTELEM_TYPE_TABLECELL)
Next
Next
emaildoc.body = soutput
emaildoc.Send False